home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / pure.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-25  |  1.0 KB  |  31 lines

  1. /* This file is part of XEmacs.
  2.  
  3. XEmacs is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU General Public License as published by the
  5. Free Software Foundation; either version 2, or (at your option) any
  6. later version.
  7.  
  8. XEmacs is distributed in the hope that it will be useful, but WITHOUT
  9. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11. for more details.
  12.  
  13. You should have received a copy of the GNU General Public License
  14. along with XEmacs; see the file COPYING.  If not, write to the Free
  15. Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  16.  
  17. /* Synched up with: FSF 19.28.  Split out of alloc.c. */
  18.  
  19. #include <config.h>
  20. #include "puresize.h"
  21. #include "lisp.h"
  22.  
  23. Lisp_Object pure[PURESIZE / sizeof (Lisp_Object)]
  24.      /* Force linker to put it into data space! */
  25. #ifdef NO_UNION_TYPE
  26.      = {0};
  27. #else
  28.      /* Need this many braces to convince GCC not to complain */
  29.      = {{{0}}};
  30. #endif
  31.